f7ca60e4af447f4f10f40312d9cf1d6727197537,src/main/java/ar/com/fdvs/dj/core/layout/Dj2JrCrosstabBuilder.java,Dj2JrCrosstabBuilder,createColumTotalHeader,#JRDesignCrosstabColumnGroup#DJCrosstabColumn#boolean#,1013
Before Change
//The height can be the sum of the heights of all the columns starting from the current one, up to the inner most one.
int auxWidth = 0;
boolean found = false;
for (Iterator iterator = djcross.getColumns().iterator(); iterator.hasNext();) {
DJCrosstabColumn col = (DJCrosstabColumn) iterator.next();
if (!col.equals(crosstabColumn) && found == false){
continue;
} else {
After Change
//The height can be the sum of the heights of all the columns starting from the current one, up to the inner most one.
int auxWidth = 0;
boolean found = false;
for (DJCrosstabColumn col : djcross.getColumns()) {
if (!col.equals(crosstabColumn) && found == false){
continue;
} else {